From 310311cd88634b53672295c8c4ae6d0891fd590a Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Thu, 4 Jun 2009 10:36:36 +0100 Subject: [PATCH] libxc: fix link error on ia64 On ia64, xen-unstable 19698:f72d26c00002 cannot be built: ../../tools/libxc/libxenguest.so: undefined reference to `xc_core_arch_map_p2m_writable' ../../tools/libxc/libxenguest.so: undefined reference to `xc_map_m2p' Because xc_offline_page.c requires xc_map_m2p() in xc_domain_save.c, xc_offline_page.c must be compiled only if CONFIG_MIGRATE=3Dy. Signed-off-by: KUWAMURA Shin'ya --- tools/libxc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libxc/Makefile b/tools/libxc/Makefile index 95e51ac58d..d3b7d5e8ee 100644 --- a/tools/libxc/Makefile +++ b/tools/libxc/Makefile @@ -32,7 +32,7 @@ CTRL_SRCS-$(CONFIG_MiniOS) += xc_minios.c GUEST_SRCS-y := GUEST_SRCS-y += xg_private.c xc_suspend.c GUEST_SRCS-$(CONFIG_MIGRATE) += xc_domain_restore.c xc_domain_save.c -GUEST_SRCS-y += xc_offline_page.c +GUEST_SRCS-$(CONFIG_MIGRATE) += xc_offline_page.c GUEST_SRCS-$(CONFIG_HVM) += xc_hvm_build.c vpath %.c ../../xen/common/libelf -- 2.30.2